home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 June / CHIP Haziran 2001.iso / prog / haziran / 19 / setup.exe / data.z / pci_scan.bpr < prev    next >
Text File  |  2001-04-11  |  4KB  |  165 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = pci_scan.exe
  17. OBJFILES = pci_scan.obj\
  18.  pci_scan.obj\
  19.  print_struct.obj\
  20.  pci_diag_lib.obj
  21. RESFILES =
  22. RESDEPEN = $(RESFILES)
  23. LIBFILES = 
  24. LIBRARIES = 
  25. SPARELIBS = 
  26. PACKAGES =
  27. DEFFILE =
  28. # ---------------------------------------------------------------------------
  29. PATHCPP = ../shared;
  30. PATHASM = .;
  31. PATHPAS = .;
  32. PATHRC = .;
  33. DEBUGLIBPATH = $(BCB)\lib\debug
  34. RELEASELIBPATH = $(BCB)\lib\release
  35. # ---------------------------------------------------------------------------
  36. CFLAG1 =  -Od -w -r- -k -y -v -vi- -c -tWC
  37. CFLAG2 = -D_NO_VCL -I$(BCB)\include;../shared
  38. CFLAG3 = -Tkh30000
  39. PFLAGS = -D_NO_VCL -$Y -$W -$O- -v -JPHN -M \
  40.  -U$(BCB)\lib;$(DEBUGLIBPATH);../shared\
  41.  -I$(BCB)\include;../shared
  42. RFLAGS = -D_NO_VCL -i$(BCB)\include;../shared
  43. AFLAGS = /i$(BCB)\include /d_NO_VCL /mx /w2 /zd
  44. LFLAGS = -ap -Tpe -x -Gn -v \
  45.  -L$(BCB)\lib;$(DEBUGLIBPATH);../shared
  46. IFLAGS =
  47. # ---------------------------------------------------------------------------
  48. ALLOBJ = c0x32.obj $(OBJFILES)
  49. ALLRES = $(RESFILES)
  50. ALLLIB = $(LIBFILES)  import32.lib cw32mt.lib
  51. # ---------------------------------------------------------------------------
  52. !ifdef IDEOPTIONS
  53.  
  54. [Version Info]
  55. IncludeVerInfo=0
  56. AutoIncBuild=0
  57. MajorVer=1
  58. MinorVer=0
  59. Release=0
  60. Build=0
  61. Debug=0
  62. PreRelease=0
  63. Special=0
  64. Private=0
  65. DLL=0
  66. Locale=1033
  67. CodePage=1252
  68.  
  69. [Version Info Keys]
  70. CompanyName=
  71. FileDescription=Executable (Console)
  72. FileVersion=1.0.0.0
  73. InternalName=
  74. LegalCopyright=
  75. LegalTrademarks=
  76. OriginalFilename=
  77. ProductName=
  78. ProductVersion=1.0.0.0
  79. Comments=
  80.  
  81. [Debugging]
  82. DebugSourceDirs=
  83.  
  84. [Parameters]
  85. RunParams=
  86. HostApplication=
  87.  
  88. !endif
  89.  
  90. # ---------------------------------------------------------------------------
  91. # MAKE SECTION
  92. # ---------------------------------------------------------------------------
  93. # This section of the project file is not used by the BCB IDE.  It is for
  94. # the benefit of building from the command-line using the MAKE utility.
  95. # ---------------------------------------------------------------------------
  96.  
  97. .autodepend
  98. # ---------------------------------------------------------------------------
  99. !if !$d(BCC32)
  100. BCC32 = bcc32
  101. !endif
  102.  
  103. !if !$d(DCC32)
  104. DCC32 = dcc32
  105. !endif
  106.  
  107. !if !$d(TASM32)
  108. TASM32 = tasm32
  109. !endif
  110.  
  111. !if !$d(LINKER)
  112. LINKER = ilink32
  113. !endif
  114.  
  115. !if !$d(BRCC32)
  116. BRCC32 = brcc32
  117. !endif
  118. # ---------------------------------------------------------------------------
  119. !if $d(PATHCPP)
  120. .PATH.CPP = $(PATHCPP)
  121. .PATH.C   = $(PATHCPP)
  122. !endif
  123.  
  124. !if $d(PATHPAS)
  125. .PATH.PAS = $(PATHPAS)
  126. !endif
  127.  
  128. !if $d(PATHASM)
  129. .PATH.ASM = $(PATHASM)
  130. !endif
  131.  
  132. !if $d(PATHRC)
  133. .PATH.RC  = $(PATHRC)
  134. !endif
  135. # ---------------------------------------------------------------------------
  136. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  137.     $(BCB)\BIN\$(LINKER) @&&!
  138.     $(LFLAGS) +
  139.     $(ALLOBJ), +
  140.     $(PROJECT),, +
  141.     $(ALLLIB), +
  142.     $(DEFFILE), +
  143.     $(ALLRES)
  144. !
  145. # ---------------------------------------------------------------------------
  146. .pas.hpp:
  147.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  148.  
  149. .pas.obj:
  150.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  151.  
  152. .cpp.obj:
  153.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  154.  
  155. .c.obj:
  156.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  157.  
  158. .asm.obj:
  159.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  160.  
  161. .rc.res:
  162.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  163. # ---------------------------------------------------------------------------
  164.  
  165.